home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Commun⁄Network / Telnet 2.5.src.ThinkC / source / vsinterf.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-06-27  |  1009 b   |  119 lines  |  [TEXT/MPS ]

  1. extern int VSsetrgn
  2.   (
  3.     int w,
  4.     int x1,
  5.     int y1,
  6.     int x2,
  7.     int y2
  8.   );
  9.  
  10. extern int VSscrolforward
  11.   (
  12.     int w,
  13.     int n
  14.   );
  15.  
  16. extern int VSscrolback
  17.   (
  18.     int w,
  19.     int in
  20.   );
  21.  
  22. extern void VSscrolright
  23.   (
  24.     int w,
  25.     int n
  26.   );
  27.  
  28. extern void VSscrolleft
  29.   (
  30.     int w,
  31.     int n
  32.   );
  33.  
  34. extern int VSredraw
  35.   (
  36.     int w,
  37.     int x1,
  38.     int y1,
  39.     int x2,
  40.     int y2
  41.   );
  42.  
  43. extern int VSgetlines
  44.   (
  45.     int w
  46.   );
  47.  
  48. extern int VSmaxwidth
  49.   (
  50.     int w
  51.   );
  52.  
  53. extern int VSgetrgn
  54.   (
  55.     int w,
  56.     int *x1,
  57.     int *y1,
  58.     int *x2,
  59.     int *y2
  60.   );
  61.  
  62. extern int VSnewscreen
  63.   (
  64.     int maxlines,
  65.     int screensave,
  66.     int maxwid,
  67.     int IDC
  68.   );
  69.  
  70. extern int VSsetlines
  71.   (
  72.     int w,
  73.     int lines
  74.   );
  75.  
  76. extern int VSwrite
  77.   (
  78.     int w,
  79.     char *ptr,
  80.     int len
  81.   );
  82.  
  83. extern void VSdetach
  84.   (
  85.     int w
  86.   );
  87.  
  88. extern void VSpossend
  89.   (
  90.     int w,
  91.     int x,
  92.     int y,
  93.     int echo
  94.   );
  95.  
  96. extern int VSscrolcontrol
  97.   (
  98.     int w,
  99.     int scrolon,
  100.     int offtop
  101.   );
  102.  
  103. extern int VSreset
  104.   (
  105.     int w
  106.   );
  107.  
  108. extern int VSinit
  109.   (
  110.     int max
  111.   );
  112.  
  113. extern char VSkbsend
  114.   (
  115.     int w,
  116.     unsigned char k,
  117.     int echo
  118.   );
  119.